home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 February / PCWFEB09.iso / Software / Linux / Kubuntu 8.10 / kubuntu-8.10-desktop-i386.iso / casper / filesystem.squashfs / var / lib / dpkg / info / libldap-2.4-2.postinst < prev    next >
Text File  |  2008-10-24  |  281b  |  14 lines

  1. #!/bin/sh
  2. #
  3. # Run ldconfig after installing the shared library.  We have to do this
  4. # manually rather than letting dh_makeshlibs deal with it because
  5. # dh_makeshlibs can't cope with the trick we're pulling with libldap_r.
  6.  
  7. if [ "$1" = "configure" ]; then
  8.     ldconfig
  9. fi
  10.  
  11.  
  12.  
  13. exit 0
  14.